home *** CD-ROM | disk | FTP | other *** search
- Q32016 Internal Compiler Error: code.c 1.46, Line 393
- C Compiler
- 5.10
- MS-DOS
-
- Summary:
- The following program will generate an internal compiler error when
- compiled in the large (/AL) or compact (/AC) memory model:
-
- main()
- {
- char *one;
- char *two[7];
- register int i, j;
- *two[i]++ = one[j++];
- }
-
- The error generates the following message:
-
- fatal error C1001: Internal Compiler Error
- (compiler file '@(#)code.c:1.46', line 393)
-
- More Information:
- You can work around the problem by eliminating the register
- declaration on the variables i and j.
- Microsoft is researching this problem and will post new information
- as it becomes available.
-
-
-
- Keywords: buglist5.10 qfbv
- Updated 88/07/21 03:19
-